home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland Pascal with Objects 7.0 / BGIDEMO.ZIP / BGIFONT.PAS < prev    next >
Pascal/Delphi Source File  |  1992-10-27  |  938b  |  37 lines

  1. {************************************************}
  2. {                                                }
  3. {   BGI Demo Program                             }
  4. {   Copyright (c) 1992 by Borland International  }
  5. {                                                }
  6. {************************************************}
  7.  
  8. unit BGIFont;
  9.  
  10. { Sample unit to accompany BGILINK.PAS. This unit links all the BGI graphics
  11.   fonts into a single TPU file. This makes it easy to incorporate the font
  12.   files directly into an .EXE file. See BGILINK.PAS for more information.
  13. }
  14.  
  15. interface
  16.  
  17. procedure GothicFontProc;
  18. procedure SansSerifFontProc;
  19. procedure SmallFontProc;
  20. procedure TriplexFontProc;
  21.  
  22. implementation
  23.  
  24. procedure GothicFontProc; external;
  25. {$L GOTH.OBJ }
  26.  
  27. procedure SansSerifFontProc; external;
  28. {$L SANS.OBJ }
  29.  
  30. procedure SmallFontProc; external;
  31. {$L LITT.OBJ }
  32.  
  33. procedure TriplexFontProc; external;
  34. {$L TRIP.OBJ }
  35.  
  36. end.
  37.